public static enum ColorParams.RenderingIntent extends java.lang.Enum<ColorParams.RenderingIntent>
Enum Constant and Description |
---|
ABSOLUTE_COLORIMETRIC |
PERCEPTUAL |
RELATIVE_COLORIMETRIC |
SATURATION |
Modifier and Type | Method and Description |
---|---|
static ColorParams.RenderingIntent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ColorParams.RenderingIntent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColorParams.RenderingIntent PERCEPTUAL
public static final ColorParams.RenderingIntent RELATIVE_COLORIMETRIC
public static final ColorParams.RenderingIntent SATURATION
public static final ColorParams.RenderingIntent ABSOLUTE_COLORIMETRIC
public static ColorParams.RenderingIntent[] values()
for (ColorParams.RenderingIntent c : ColorParams.RenderingIntent.values()) System.out.println(c);
public static ColorParams.RenderingIntent valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null